home *** CD-ROM | disk | FTP | other *** search
- %!
- %% BioLogo¬ By Tim Endres.
- %%
- %%
- %%
- /forward { dup 0 rlineto 0 translate } def
- /back { neg dup 0 rlineto 0 translate } def
- /right { rotate } def
- /left { neg rotate } def
- /pendown { 0 setgray /PENUP 0 def } def
- /penup { 1 setgray /PENUP 1 def } def
- /Tsave { } def
- /Trestore { } def
- /pushmark { } def
- /popmark { } def
- /dot { } def
- /ispendown { 1 PENUP ne } def
- /ispenup { 1 PENUP eq } def
-
- %
- % The following function is the logo expression!!
- %
-
-